home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************* THREAD.H
- * *
- * Thread Starter Function *
- * *
- ****************************************************************************/
-
- #ifndef THREAD_H
- #define THREAD_H
-
- #define INCL_BASE
- #define INCL_PM
- #include <os2.h>
-
- extern TID StartThread ( char *Name, void(*Function)(void*), int StackSize, void *Parameter, int Priority=0 ) ;
-
- #endif